Memcache.configure   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
import Service from './service'
2
3
class Memcache extends Service {
4
    requireRoot = false
5
    service = 'libmemcached'
6
7
    configure(): Promise<boolean> {
8
        return Promise.resolve(false)
9
    }
10
11
}
12
13
export default Memcache